
1. Open the webChat.js file
2. Delete the sendPagePushMessage function.
3. Find the startOnHoldMessages function. In particular, find the following comment: // sort the WebOnHoldComfortGroups according to sequence
4. Copy the following lines into the SDK, replacing the lines just below this comment
    var newMessages = webChat.webOnHoldComfortGroups.messages.sort(function(a, b) {
        return (a.sequence - b.sequence);
    });
5. Open the webChatConfig.js file
6. Change the jsonMethodPing variable from 'ping' to 'pong'
7. Remove the dialcodes.js file from the home.html page.
